Screen:PrintString(msg)
Prints a message to the primary image buffer.
Be sure to use Screen:Render() after using this function.
function main() { Screen:Show() Screen:PrintString("Mabuhay!") //print the message Screen:Render() //display the message to the Screen dialog box Konsol:Delay(1000) //pause for a second to read the message }